Skip to main content
PATCH
/
beta
/
fleet
/
vehicles
/
{id}
/
immobilizer
[beta] Update engine immobilizer state of a vehicle.
curl --request PATCH \
  --url https://api.samsara.com/beta/fleet/vehicles/{id}/immobilizer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "relayStates": [
    {
      "id": "relay1",
      "isOpen": false
    }
  ]
}
'
This response has no body data.

Documentation Index

Fetch the complete documentation index at: https://samsara-showcase.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer<int64>
required

Vehicle ID

Body

application/json

A request body to update the engine immobilizer state.

relayStates
object[]
required

A list of relay states. If a relay is omitted, its state won't be updated. If the list is empty, a 400 bad request status code will be returned. If there are multiple states for the same relay, a 400 bad request status code will be returned.

Response